home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Periodical / Info-Mac / InfoMac 11-218 < prev    next >
Text File  |  1993-12-31  |  42KB  |  1,209 lines

  1.  6-Nov-93  9:36:24-GMT,42385;000000000000
  2. Return-Path: <macmod@SUMEX-AIM.Stanford.EDU>
  3. Received: from SUMEX-AIM.Stanford.EDU by CAMIS.Stanford.EDU (4.1/inc-1.0)
  4.     id AA09907; Sat, 6 Nov 93 01:36:22 PST
  5. Full-Name: Info-Mac Moderator
  6. Received: by SUMEX-AIM.Stanford.EDU (4.1/inc-1.0)
  7.     id AA11542; Thu, 4 Nov 93 07:45:11 PST
  8. Message-Id: <9311041545.AA11542@SUMEX-AIM.Stanford.EDU>
  9. Date: Thu,  4 Nov 93 07:44:51 PST
  10. From: The Moderators <info-mac-request@sumex-aim.stanford.edu>
  11. Reply-To: Info-Mac@sumex-aim.stanford.edu
  12. Subject: Info-Mac Digest V11 #218
  13. To: info-mac-list@SUMEX-AIM.Stanford.EDU
  14.  
  15.  
  16. Info-Mac Digest             Thu,  4 Nov 93       Volume 11 : Issue 218
  17.  
  18. Today's Topics:
  19.  
  20.       [*] AD Programmers package
  21.       [*] launch-creator.cpt - (source) get a file "double-clicked" from a
  22.       running pgm
  23.       [*] mac-facts-93-11-02.txt
  24.       [*] MacSlurp
  25.       [*] myenv-notify.cpt: "Standard" progr env for C/C++ (source)
  26.       [*] PUP decrypter
  27.       [*] teletimes-93-11
  28.       A/UX naive question
  29.       Active Matrix Kolour
  30.       A piece of junk called OptiMem
  31.       Appleshare Mounting of CD Device (A)
  32.       Blind Person's Mac
  33.       CAP
  34.       Centris 660av ---> Quadra 660av
  35.       Confessions of a Power Loser
  36.       Credit Card Validation via Mac (A)
  37.       Duo 230 Batteries (R)
  38.       Gartner Group Report (Q)
  39.       Good Calendar Program
  40.       Headers in WriteNow
  41.       How do you make ppats w/out ResEdit? (Q)
  42.       Identity of AppleShare Guest Access (Q)
  43.       Info-Mac Digest V11 #217
  44.       LW 8.1.1 Problems with legal size paper. (R)
  45.       MacX (Summary)
  46.       Map graphics
  47.       MS Word 51a Pict paste prob (Q)
  48.       Newer Tech. VSO
  49.       New Macs in Apple Facts 11.93
  50.       PowerBook Duo Power shuts off
  51.       Printing/Viewing TeX Docs
  52.       Quicken 4.0 (C)
  53.       Quicken 4 bugs (C)
  54.       Redrawing Windows in Think Pascal
  55.       Salient.com
  56.       Shareware Communication Tool
  57.       SNMP Agent
  58.       Symbol Font (Q)
  59.       Sys 6.0.8l where?
  60.       Syst 7 Pro PowerTalk MSAMs (Q)
  61.       Three cheers for 800-SOS-APPL
  62.       umich site
  63.       What good is VRAM ?
  64.  
  65. The Info-Mac newsgroup is moderated by Bill Lipa and Gordon Watts.
  66.  
  67. The Info-Mac archives are available (by using FTP, account anonymous,
  68. any password) in the info-mac directory on sumex-aim.stanford.edu
  69. [36.44.0.6].  Help files and indices are in /info-mac/help.
  70.  
  71. Please send articles and binaries to info-mac@sumex-aim.stanford.edu.
  72. Send administrative mail to info-mac-request@sumex-aim.stanford.edu.
  73.  
  74. ----------------------------------------------------------------------
  75.  
  76. Date: Wed, 3 Nov 1993 16:31:33 +0100
  77. From: pope@imv.aau.dk (Povl H. Pedersen)
  78. Subject: [*] AD Programmers package
  79.  
  80. A few people told me, that my previous submission in 2 parts (manual and
  81. examples) was bad, so I have compressed it with Compact Pro, and put both
  82. examples and manual together in one file.
  83.  
  84. The title should describe the contents. This archive contains the After
  85. Dark programmers manual, and a few examples. Downloaded from AOL and
  86. distributed with permission from Berkeley Systems.
  87.  
  88. [Archived as /info-mac/dev/ad-programmers-pckg.hqx; 66K]
  89.  
  90. ------------------------------
  91.  
  92. Date: Wed, 3 Nov 93 11:37:36 -0600
  93. From: oleg@ponder.csci.unt.edu (Kiselyov Oleg)
  94. Subject: [*] launch-creator.cpt - (source) get a file "double-clicked" from a
  95. running pgm
  96.  
  97. What:   get any file "double-clicked" from within a running program
  98. Contents:
  99.     launcher.cc     - code itself (commented)
  100.     vlauncher.cc    - verification routine
  101. Language: Symantec C++ 6.0 (though worked for Think C 5.0, too)
  102. System: System 7.x, but probably 6.x is OK, too.
  103. Note: needs standard environment, see myenv-notify.cpt
  104. Comments to: oleg@ponder.csci.unt.edu, oleg@unt.edu
  105.  
  106. Explanation:
  107. This is a simple program that, given a file name, launches an
  108. application-creator and has it handle the file. If the file
  109. is an application, it is launched itself. The net result is
  110. exactly the same as if the user had double-clicked on the file.
  111. Synopsis
  112.     void open_selection(const char * full_path_name)
  113. Where the 'full_path_name' tells the full path name of the file that
  114. should be "double-clicked". Though, a relative path name would do, too.
  115. The present program achieves the magic by sending an 'Open Selection'
  116. event to the Finder. It is significantly based on the FinderEvents
  117. stack by Jon Pugh and Apple Computer, Inc. (C) 1991-92 Apple Computer, Inc.)
  118. (which is written in Pascal and _very_ big and messy)
  119.  
  120. [Archived as /info-mac/dev/src/launch-creator-c.hqx; 4K]
  121.  
  122. ------------------------------
  123.  
  124. Date: Wed, 3 Nov 1993 11:45:33 -0600
  125. From: J. D. S. (Sterling) Babcock <jdsb@ee.duke.edu>
  126. Subject: [*] mac-facts-93-11-02.txt
  127.  
  128. Dear Readers:
  129.  
  130.    Enclosed please find my collection of lists of Apple Macintosh Models.
  131.  
  132.    Model List I is my regular list which provides as much information on the
  133. configuration of each model that can fit on one line.
  134.    Model List II is additional information.  It contains minimum and maximum
  135. system versions, dates of manufacture, suggested retail prices and model of
  136. case.
  137.    Model List III is from Kevin D. Connery.  It contains Speedometer 3.11
  138. speed ratings for each model as well as upgraded machines.
  139.  
  140. Please email to jdsb@ee.egr.duke.edu    any corrections to Model List I or
  141. II.
  142. Please email to keradwc@rahul.net       any corrections to Model List III.
  143.  
  144.    Sterling
  145.  
  146. [Archived as /info-mac/info/hdwr/mac-facts-93-11-02.txt; 43K]
  147.  
  148. ------------------------------
  149.  
  150. Date: Tue, 2 Nov 93 22:04:52 -0500
  151. From: Tom Davies <tomd@horse.demon.co.uk>
  152. Subject: [*] MacSlurp
  153.  
  154. To Whom It May Concern,
  155.     Please find attached a program called MacSlurp which makes offline
  156. news reading a reality for those who have an Internet connection, rather
  157. than UUCP.
  158. I'll announmce it on c.s.m.comm when its up on umich -- I don't want my
  159. local ftp site overloaded.
  160.     Please mail me if you want more info.
  161.  
  162.     Regards,
  163.         Tom
  164.  
  165. [Archived as /info-mac/comm/net/mac-slurp-15.hqx; 202K]
  166.  
  167. ------------------------------
  168.  
  169. Date: Wed, 3 Nov 93 11:35:47 -0600
  170. From: oleg@ponder.csci.unt.edu (Kiselyov Oleg)
  171. Subject: [*] myenv-notify.cpt: "Standard" progr env for C/C++ (source)
  172.  
  173. What: minimal minimal "standard" programming environment for Think C/C++
  174. Highlights: posting synchronous _and_ asynchronous notifications,
  175.         displaying messages: like crossbreed printf & DebugStr, but
  176.         works without MacsBug loaded!, simple error-handling
  177. Note: _commented_ source code
  178. Note: The environment is used in the programs I post next.
  179. System: System 7, Think C/C++ version 6.0 (but worked for 5.0, too)
  180. Contents:
  181.     myenv.h         Declaration of functions, macros, and constants
  182.     myenv.cc        Implementation source code
  183.     vmyenv.cc       Validation routine that checks that everything works
  184.     notify.cc       Source for posting notifications
  185. Comments to: oleg@ponder.csci.unt.edu, oleg@unt.edu
  186.  
  187. Explanation:
  188. notify.c: The set of functions lets a (possibly, background) application post
  189. synchronous or asynchronous notification messages to the user.
  190. Synchronous posting means that the posting function does not return until
  191. the notification message is displayed and the user dismisses it.
  192. In asynchronous mode, the posting function returns as soon as the
  193. message is queued into the notification queue (but not yet displayed!).
  194. The functions use the Notification Manager and the EventManager (via
  195. function sleep() defined elsewhere in the standard env to relinquish
  196. the CPU control while sleeping). Circular queue is used to store
  197. asynchronous notification requests.
  198.  
  199. [Archived as /info-mac/dev/src/myenv-notify-c.hqx; 12K]
  200.  
  201. ------------------------------
  202.  
  203. Date: Wed, 3 Nov 1993 00:40:32 -0600
  204. From: c526142@monad.missouri.edu (Kuang-Yu Liu)
  205. Subject: [*] PUP decrypter
  206.  
  207. Hi,
  208.  
  209. Here is PUP decrypter Version 2.0. Strange! Every once in a while somebody
  210. come up with this question.
  211.  
  212. Goo luck.
  213.  
  214. [Archived as /info-mac/cmp/pup-decryptor-20.hqx; 16K]
  215.  
  216. ------------------------------
  217.  
  218. Date: Tue, 02 Nov 1993 00:12:17 PST
  219. From: ian@breez.wimsey.com (Ian Wojtowicz)
  220. Subject: [*] teletimes-93-11
  221.  
  222. This month's issue contain a couple of important announcements, articles on
  223. the
  224. Environment, Human Rights Abuses (in the sneaker industry) and yet another
  225. sublime photography article by Kent Barrett with lots of great art!
  226.  
  227. Enjoy,
  228. Ian Wojtowicz
  229. Editor-in-Chief
  230. ** TeleTimes International ************************************************
  231. is an electronic publication produced in Vancouver. For a free subscription
  232. send your name and computer type to:                   ian@breez.wimsey.com
  233. ***************************************************************************
  234.  
  235. [Please do not send files to info-mac and macgifts -- we get 2 copies
  236.  Thanks, isl]
  237.  
  238. [Archived as /info-mac/per/teletimes-93-11.hqx; 569K]
  239.  
  240. ------------------------------
  241.  
  242. Date: Wed, 03 Nov 1993 13:26:01 -0500 (CDT)
  243. From: BRAM@mbcf.stjude.org
  244. Subject: A/UX naive question
  245.  
  246. Sorry, but I couldn't find this in the AUX archives.
  247.  
  248. Can A/UX and system 7 run at the same time? or do you
  249. have to run only one or the other?
  250.  
  251. If so, does anyone know how much RAM each needs ?
  252.  
  253. Thanks alot.
  254. Rick
  255.  
  256. ------------------------------
  257.  
  258. Date: Wed, 3 Nov 93 09:17:56 PST
  259. From: burns@risvax.rowland.org (Mike Burns)
  260. Subject: Active Matrix Kolour
  261.  
  262.     While we are on the subject: I recently was somewhat disappointed
  263. to discover that my pb180c seems to use dithering to get the 256 gray
  264. levels (even when the Monitors control panel is set to 256 Grays). Is this
  265. really the case ? And if so, is there any control over that (or even any
  266. documentation of just what levels are dithered and how ?) I first noticed
  267. this when I was trying to display some smoothly varying gray-level images.
  268.  
  269. Mike Burns
  270. burns@risvax.rowland.org
  271.  
  272. ------------------------------
  273.  
  274. Date: 3 Nov 1993 12:16:01 -0500
  275. From: knapp@cs.purdue.edu (Edgar Knapp)
  276. Subject: A piece of junk called OptiMem
  277.  
  278. A few people asked about OptiMem. Here is my assessment:
  279.  
  280. Think twice before buying OptiMem, and be happy it comes with a
  281. money-back guarantee.
  282.  
  283. Installation is a pain in the butt.
  284.  - crashed on first try
  285.  - aborted on second try since I had locked the original disks (I find it
  286.    hard to believe they are trying to enforce leaving original disks
  287. unlocked)
  288.  - can't leave organization field blank
  289.  
  290. Incompatibility with NOW Up-To-Date 2.0.1. Launching the program freezes
  291. the machine when OptiMem is enabled. Even after disabling OptiMem, I get a
  292. message that there is not enough memory to launch NOW UTD, even right at
  293. System startup and with more than 5 MB of memory available. I thought
  294. OptiMem was supposed to eliminate these problems rather than create them.
  295.  
  296. Restarting blanks the external monitor, then freezes my machine with
  297. nothing but the desktop pattern showing. This happens 100% of the time.
  298.  
  299. Initially, I received the bogus message "No applications known to
  300. OptiMem on Boot Volume". This has only happened once, though
  301.  
  302. The following main-stream applications are not recognized by OptiMem:
  303. FileMaker Pro
  304. Disk First Aid 7.2
  305. Nisus
  306. Simple Player
  307. Stuffit Expander
  308. BBEdit Lite
  309. Excel Dialog Editor
  310. Word Equation Editor
  311. Eudora
  312. Fetch
  313. FrameMaker
  314. MacDraw Pro
  315. MacX
  316. Microsoft Graph (part of Word)
  317. Remote Access
  318. Textures
  319. DiskFit Pro
  320. FastBack Plus
  321. MacWrite Pro
  322. Mathematica
  323. More
  324. MPW Shell
  325. PageMaker
  326. Persuasion
  327. Think Pascal
  328. Think Reference
  329.  
  330. What that means is that in order to get any benefit out of OptiMem for
  331. these applications, you have to go through a painful "break-in"
  332. period. Many of them may not work at all (and you'll have a really
  333. good time finding that out!). Happy crashing.
  334.  
  335. Hence my advice: STAY AWAY FORM THIS PIECE OF JUNK!
  336.  
  337. My setup: PowerBook 170, 8MB, external 16" monitor connected via Radius
  338. PowerView. System 7.1 after HSU 2.0. Testing was done with only a few
  339. crucial extensions. OptiMem version 1.4.2.
  340.  
  341. Edgar Knapp                         knapp@cs.purdue.edu
  342. Purdue University                   (get PGP public key via finger)
  343.  
  344. ------------------------------
  345.  
  346. Date: Thu, 04 Nov 93 08:56:23 EST
  347. From: "Allan M. Bloom" <IRBLOOM%VTVM1.BITNET@Forsythe.Stanford.EDU>
  348. Subject: Appleshare Mounting of CD Device (A)
  349.  
  350. On Mon, 1 Nov, Irv Wiswall wrote:
  351.  
  352. >I seem to remember a way that a CD could be shared with System 7 file
  353. >shareing, but I can't find what ever it takes to do this.
  354.  
  355. Very simple, Irv. The CD must be in its drive when AppleShare fires up.
  356. At that point, the CD can be shared. In fact, it can't be ejected until
  357. AppleShare is turned off. Lots of folk have found this "feature" by
  358. accident. The file info-mac/disk/unmountit-10.hqx can be used to
  359. dismount any removeable on the fly (Drop the disk icon on it, sharing
  360. is turned off, the disk ejectes, and sharing is turned back on). If you
  361. want to share a CD when your machine is already on, turn of sharing,
  362. load the CD, turn sharing back on, then share the CD.
  363.  
  364. Al Bloom, Virginia Tech
  365.  
  366. ------------------------------
  367.  
  368. Date: Thu, 04 Nov 93 17:13:11 IST
  369. From: "Nakhshon Tsouk (n.tsouk@uvm.haifa.ac.il)"
  370. <REDC202%UVM.HAIFA.AC.IL@Forsythe.Stanford.EDU>
  371. Subject: Blind Person's Mac
  372.  
  373. We are looking for a Brille keyboard and printer connectable
  374. to a Mac (as seen on PeeCee).
  375. Any suggestions?
  376. TIA
  377.  
  378.  
  379. N. Tsouk (n.tsouk@uvm.haifa.ac.il)
  380. School of Education
  381. University of Haifa (Israel)
  382.  
  383. ------------------------------
  384.  
  385. Date: Thu, 4 Nov 93 16:32:50 GMT
  386. From: chipek@gansu1.in2p3.fr (John Chipek)
  387. Subject: CAP
  388.  
  389.  I try to get on the mailing list comp.protocols.appletalk,by sending mail
  390. to info-appletalk-request@andrew.cmu.edu with no success!
  391. The return mail tell me:Can't connect to remote host andrew.cmu.edu
  392.  
  393. Anybody can help me?
  394.  
  395. ------------------------------
  396.  
  397. Date: Thu, 4 Nov 1993 00:06:30 -0600
  398. From: (Pete Chane) <pchaneuw@vms2.macc.wisc.edu>
  399. Subject: Centris 660av ---> Quadra 660av
  400.  
  401. It seems that if Centris 660av users download and install System Enabler
  402. 088 v. 1.1, it will change their computer from a Centris to a Quadra on the
  403. About this Mac... screen and software that does system info (like Now
  404. Profile and TattleTale) will also use the new Quadra name.  I got Enabler
  405. 088 v. 1.1 from AppleLink.
  406.  
  407.  ------------------------------------------------------
  408. Pete Chane
  409. PCHANEUW@macc.wisc.edu
  410. PCHANE@applelink.apple.com
  411.  
  412. ------------------------------
  413.  
  414. Date: Thu, 4 Nov 1993 10:27:04 -0500
  415. From: bash@helix.nih.gov (Mike Basham)
  416. Subject: Confessions of a Power Loser
  417.  
  418. The only thing worse than knowing nothing is knowing everything.
  419.  
  420. I say this, of course, as someone who knows everything. At least when it
  421. comes to Macintosh, I'm the ultimate geek.
  422.  
  423. Fully aware of my godlike status, my brother (a computer neophyte) trusted
  424. me to arrange the purchase of his new computer. I got him a great deal on a
  425. Centris (I know, Quadra) 660AV with an AudioVision monitor and Apple
  426. Adjustable Keyboard.
  427.  
  428. Wanting to shield my poor, novice brother the embarrassment of having to
  429. set up this computer himself, I had it shipped to my house instead. My plan
  430. was to check it out and get it running, then deliver it to his house in
  431. Baltimore tonight.
  432.  
  433. I ran into problems. The monitor wouldn't work right. The AV extension
  434. wouldn't load. The keyboard and mouse would work only when plugged into the
  435. CPU, not when plugged into the monitor.
  436.  
  437. After trying everything I could, I called 1-800-SOS-APPL. I talked to a
  438. very helpful person who had me reinstall the system software, plug in some
  439. things and unplug others, and do everything humanly possible to try and get
  440. this thing working.
  441.  
  442. I discovered that the main problem with the unit was that one of the ADB
  443. ports was dead. When I plugged the monitor into the good port (the one on
  444. the far left of the unit) everything worked fine, but when plugged into the
  445. other ADB port next to the first, nothing worked.
  446.  
  447. My brother was disappointed to hear that his new computer had a flaw. I
  448. told him I would try and arrange a replacement, but I wasn't sure how long
  449. it would take. His kids were especially disappointed to hear that they
  450. wouldn't get to play any games today.
  451.  
  452. As I was disconnecting the computer to put it back in the box, I noticed a
  453. funny icon above the "defective" ADB port. Just then I remembered that this
  454. machine had an S-Video port that used the same kind of connectors as ADB.
  455.  
  456. Unlike most other Macs that I have used, the Quadra 660AV has only one ADB
  457. port. I wouldn't have had trouble with this except that, right next to that
  458. ADB port is another port _that accepts the same kind of cable!_ I just
  459. assumed, since the cable plugged in ok, that this Mac had two ADB ports.
  460.  
  461. Boy, did I feel like an idiot. I called my brother and explained, and he
  462. promised to hide the truth from his wife and kids. He said he would tell
  463. them that their genius uncle Mike discovered the defective chip on the
  464. Quadra's logic board, removed it with a pair of tweezers, and soldered a
  465. new chip back on. I don't think they'll believe it.
  466.  
  467. Apple is innocent on this one; the only one I have to blame is myself. If I
  468. hadn't been so sure that this Mac had two ADB ports, I might have taken the
  469. time to look at the icons above the ports or even (shudder) read the
  470. manual. Still, experiences like this add spice to life.
  471.  
  472. Mike Basham (bash@helix.nih.gov)
  473.  
  474. BTW, the 660AV is a neat computer!
  475.  
  476. ------------------------------
  477.  
  478. Date: Wed, 3 Nov 1993 10:03:30 PST
  479. From: Kee Nethery <kee@aol.com>
  480. Subject: Credit Card Validation via Mac (A)
  481.  
  482. >Our company is looking for credit card validation packages for the Mac.
  483. >Ideally we would like a package that we would batch process credit
  484. >card validation if we fed it the correct information from our VAX.
  485. >
  486.  
  487. contact:
  488. Tellan Software
  489. San Jose, CA 95148
  490. 408-274-1110
  491. fax 800-483-5536
  492.  
  493. I have not used their software and have no experience with it but it is
  494. supposed to do credit card validations.
  495.  
  496. Kee Nethery
  497. kee@aol.com
  498.  
  499. ------------------------------
  500.  
  501. Date: Thu, 4 Nov 1993 07:07:42 -0800 (PST)
  502. From: John Thoo <jbthoo@ucdavis.edu>
  503. Subject: Duo 230 Batteries (R)
  504.  
  505. On 2 Nov 1993 bjturner@lynx.cs.usfca.edu (Benjamin J. Turner) wrote:
  506. >         OK, Apple is now shipping the new Duos with the new Type II
  507. batteries
  508. > that have a longer life than Type I's. The old Duos can take advantage of
  509. > these
  510. > new battereis if they have the new Power Manager, which has been
  511. included for
  512. > a while now. My question is: Does the Duo 230 currently ship with the old
  513. > Type I battery, or with the new Type II battery?
  514.  
  515. As I understand it, the older Duos are not shipping with the new batteries.
  516.  
  517. --John.
  518. J. B. THOO, Math Dept, Univ of California, Davis <jb2@math.ucdavis.edu>
  519.  
  520. ------------------------------
  521.  
  522. Date: 3 Nov 93 17:36:00 CST
  523. From: "Mike Sisson  " <SISSON_MD@brutus.vought.com>
  524. Subject: Gartner Group Report (Q)
  525.  
  526. A recent MacWeek had an article about a study done by above group which
  527. showed that owning a Mac was cheaper in the long run. Would love to have a
  528. copy to wave in management's faces. Article gave no info on how to contact
  529. these folks. Does anyone have a telephone number or e-mail address?
  530.  
  531. Mike Sisson
  532. sisson_md@brutus.vought.com
  533.  
  534. ------------------------------
  535.  
  536. Date: Thu, 4 Nov 1993 09:46:32 EST
  537. From: "Jeffrey N. Fritz" <JFRITZ%WVNVM.BITNET@Forsythe.Stanford.EDU>
  538. Subject: Good Calendar Program
  539.  
  540. John Thoo <jbthoo@ucdavis.edu. writes:
  541. JT>My question is, Does anyone know of a good calendar program
  542. JT>that features a rich (InControl-like) to-do list?
  543.  
  544. I've been pleased with Now-Up-To-Date.  It's very close to what
  545. I've been looking for in a calender package and it managers to
  546. do lists very well.
  547.  
  548. The new version (2.1) interfaces directly with Now's new contact
  549. manager (Now Contact) which makes things even nicer.
  550.  
  551. Jeffrey Fritz
  552. West Virginia University
  553. jfritz@wvnvm.wvnet.edu
  554.  
  555. ------------------------------
  556.  
  557. Date: Wed, 3 Nov 93 16:06:23 PST
  558. From: yanjose@sfsuvax1.sfsu.edu (Joe Yan)
  559. Subject: Headers in WriteNow
  560.  
  561. >
  562. > In WriteNow 3.0 I can't seem to tell the headers section not to print a 1 on
  563. > the first page, is there anyway of doing this without forcing all odd pages
  564. > not to have their page #s printed?
  565. >
  566.  
  567. That's easy.  :)  Just put an empty header before the header with the
  568. page number one it.
  569.  
  570. Just to make myself clear, I will go through all the steps.
  571. 1) "Show Markers" in the View Menu
  572. 2) See that marker?  That represents your current header.
  573. 3) put the insertion point before that marker
  574. 4) "Insert New Header" in the Format menu
  575. 5) you're done!
  576.  
  577. Hope this helps!
  578.  
  579. ------------------------------
  580.  
  581. Date: Wed, 3 Nov 93 16:52:25 EST
  582. From: adorfman@cs.tufts.edu (2d Lt Avram Dorfman)
  583. Subject: How do you make ppats w/out ResEdit? (Q)
  584.  
  585. (Please respond directly, will post summary)
  586.  
  587. How do you make/view ppats that are different sizes from what ResEdit offers?
  588. ResEdit is fairly restrictive, especially in terms of maximum size. I don't
  589. want to buy anything extravagant. All I have is whatever came with Symantec
  590. C++, and basic stuff like MacDraw Pro. Shareware tools are fine by me.
  591.  
  592. -Avram Dorfman (adorfman@cs.tufts.edu)
  593.  
  594. ------------------------------
  595.  
  596. Date: Thu, 04 Nov 1993 11:39:49 +0000 (U)
  597. From: WalrathW <walrathw@RFERL.ORG>
  598. Subject: Identity of AppleShare Guest Access (Q)
  599.  
  600. I'm always curious who is accessing my shared items, but can't see the
  601. identity
  602. when they log in as guest. Is there a utility out there, or some other way  of
  603. finding out what machine the guest access is coming from?
  604.  
  605.    Wayne Walrath
  606. walrathw@rferl.org
  607.  
  608. ------------------------------
  609.  
  610. Date: Thu, 04 Nov 93 09:28:49 EST
  611. From: Chuck Weinstock <weinstoc@SEI.CMU.EDU>
  612. Subject: Info-Mac Digest V11 #217
  613.  
  614. |> > Our company is looking for credit card validation packages for the Mac.
  615. |> > Ideally we would like a package that we would batch process credit
  616. |> > card validation if we fed it the correct information from our VAX.
  617. |>
  618.  
  619. There is a package out called MacAuthorize, available from Tellan Software at
  620. 1-800-4TELLAN. I just received a copy this week, and it looks like a
  621. good/useful package.  I say "looks" because I haven't quite gotten it to work
  622. yet.  It turns out that there are a lot of variables in credit card
  623. processing, the most interesting being the network that you are connected to.
  624. Each has its own protocol and it turns out that MacAuthorize didn't know about
  625. the protocol my transaction processor uses.  They are providing me with an
  626. updated version, hopefully next week.
  627.  
  628. Bottom line: if they support your network, it looks like a good deal
  629. (certainly better than renting/leasing a Verifone).
  630.  
  631. If you call them, please mention that you heard about them through me.  (I
  632. don't get anything if you do, except perhaps additional goodwill.)
  633.  
  634. Chuck Weinstock
  635.  
  636. ------------------------------
  637.  
  638. Date: Thu,  4 Nov 1993 09:07:28 -0500
  639. From: "Andrew E. Scheck" <aes@aplcomm.jhuapl.edu>
  640. Subject: LW 8.1.1 Problems with legal size paper. (R)
  641.  
  642. >       I was in Aldus Freehand, printing some signs in landscape on
  643. > a legal size paper. I made sure the page setup matched the document
  644. > prefs that I had set in freehand. I tried both print drivers. What
  645. > would happen is the text, which filled the page on the screen, would
  646. > print down about 3.5 inches on the page and then be chopped off by the
  647.  
  648.     We had the same problem, but rather than switching back to the old
  649. driver, I switched back to the old PPD file that used to work. We have an 8MB
  650. LW IIg that using the new "smart" PPD (it supposedly handles all memory
  651. configurations) would not print beyond the letter size on legal size (it also
  652. clearly showed that it wouldn't print any bigger in the "Page Setup..."
  653. dogcow picture). I just switched back to my old 8MB specific PPD and
  654. everything now seems to work just fine.
  655.  
  656. Andy Scheck
  657. aes@aplcomm.jhuapl.edu
  658.  
  659. ------------------------------
  660.  
  661. Date: Wed Nov  3 23:07:09 EST 1993
  662. From: brg@nic.cerf.net (Brian R. Gaeke)
  663. Subject: MacX (Summary)
  664.  
  665. I received 2 responses to my query regarding MacX and connection tools.
  666.  
  667. > From: Matthew Johnson <mgj@doc.ic.ac.uk>
  668. > You need the MacTCP Tool (written for MacX). It comes on the
  669. > installation discs.
  670.  
  671. > From: howardh@taurus.BCAA.BC.CA (Howard Hui)
  672. > In InfoMac 216 you said that none of the connection tools installed are
  673. > working. It seems to me that may be MacX cannot find it connection tool.
  674. > Could you check your extension folder and see if "MacTCP tool" is there?
  675. > It it is not there, you have to grap it from one of your MacX diskettes.
  676. >
  677. > Please also knows that MacX is now at least 1.2. It work better if you are
  678. > running System 7.1.
  679.  
  680. > From: Stan Kerr <kerr@ux1.cso.uiuc.edu>
  681. > Your MacX 1.1.7 distribution disks include an extension called
  682. > MacTCP Tool that has to be installed in the system folder. It's on
  683. > one of the Communications disks.
  684.  
  685. > From: Sven Guckes <guckes@inf.fu-berlin.de>
  686. > All I can say is "MacX 1.2 works well over here."
  687. > Haven't used it much (yet), though.
  688. > I just wanted to point out that MacX 1.2 exists and that you might need
  689. > the update.
  690.  
  691. I checked my sys. folder and indeed, MacTCP Tool is not there. I will have
  692. to get ahold of this.
  693.  
  694. Are there any freely-available connection tools that would work as well?
  695.  
  696. Thanks to mgj@doc.ic.ac.uk
  697. howardh@taurus.bcaa.bc.ca
  698. kerr@ux1.cso.uiuc.edu
  699. and guckes@inf.fu-berlin.de for responding.
  700.  
  701. Brian
  702.  
  703. --
  704. Brian Gaeke, The Dimensional Gate Company / Internet E-Mail: brg@cerf.net
  705. Finger my account for my PGP public key.
  706.  
  707. ------------------------------
  708.  
  709. Date: Thu, 04 Nov 93 10:31:34 GMT
  710. From: "Ray Kallman" <ray@delfin.wyvern.com>
  711. Subject: Map graphics
  712.  
  713. Does anyone know of a good source of map graphics for the Mac?  Right
  714. now I need a map of the states along the eastern seaboard of the United
  715. States but I foresee needing other maps in the future.  They need not be
  716. to detailed.  Political boundries and maybe significant cities are
  717. sufficient.  I would prefer them in PICT format but most any other
  718. format will do.  Anyone have any ideas?
  719.  
  720. | Ray Kallman       ray@delfin.wyvern.com |
  721.  
  722. ------------------------------
  723.  
  724. Date: Wed, 3 Nov 93 16:36:41 EST
  725. From: adorfman@cs.tufts.edu (2d Lt Avram Dorfman)
  726. Subject: MS Word 51a Pict paste prob (Q)
  727.  
  728. (Please respond directly, will post summary)
  729.  
  730. I drew a nifty little diagram in MacDraw Pro, and pasted into M$ Word 5.1a.
  731. The
  732. parts of my diagram that involved freeform curves lost their curviness, and
  733. became simply straight line segments joined at angles. I tried saving the
  734. diagram as a Pict from MacDraw, and importing the file. It did the same
  735. thing.
  736. I suspect Word is the culprit because Pict is a standard format and contains
  737. the curvature information.
  738.  
  739. In both cases, the diagram showed up as a MS Word Picture. I suspect that the
  740. problem is that the internal format isn't powerful enough to handle freeform
  741. curves. Is there any way to bypass the internal picture format, and just keep
  742. it a regular Pict?
  743.  
  744. This process worked fine in MS Word 4.00d, where there was no internal picture
  745. format. It seems odd that the new version would actually be weaker in this
  746. case.
  747.  
  748. -Avram Dorfman (adorfman@cs.tufts.edu)
  749.  
  750. ------------------------------
  751.  
  752. Date: Thu, 4 Nov 1993 11:33:19 +0100
  753. From: vetah@vinga.hum.gu.se (Anders Alvers)
  754. Subject: Newer Tech. VSO
  755.  
  756. Is there anyone who knows if there is a new version of the controlpanel  NT
  757. VS= for the Quadra 700/900 I have ver 1.0 and am having problems with it. I
  758. have tried to contact Newer Tech by snail-mail but without any success. Do
  759. they have an internet add??
  760. Thanks
  761.  
  762. _____________
  763. Anders Alvers, vetah@hum.gu.se
  764.  
  765. ------------------------------
  766.  
  767. Date: Thu, 4 Nov 1993 07:26:57 -0800
  768. From: awest@cln.etc.bc.ca
  769. Subject: New Macs in Apple Facts 11.93
  770.  
  771. I read with some sadness of the demise of the LC III and all of the other
  772. great '030' machines. I have had my LCIII since October and love it, it is
  773. a great leap into colour for the same price I paid for a Plus in '89. So
  774. here is what is in the Apple fact Book 11.93
  775.     Desktop Computers
  776.         LC      475     25 mHz 68LC040 - looks like LC III case
  777.         Quadra  605     25 mHz 68LC040 - looks like a clean fronted
  778.                           Quadra 610 case
  779.         Quadra  610     25 mHz 68040   - looks like Centris 610
  780. case
  781.         Quadra  650     33 mHz 68040   - looks like Centris 650
  782. case
  783.                           (and a IIvx)
  784.         Quadra  660AV   25 mHz 68040   - comes with FPU and DSP
  785. Chip
  786.                           looks like Centris 610
  787. case
  788.                           special monitor for full
  789. A/V
  790.         Quadra  650     33 mHz 68040   - looks like Centris 650
  791. case
  792.  
  793.     Performa Models
  794.         Performa 410    16 mHz 68030
  795.         Performa 460    33 mHz 68030
  796.         Performa 466    33 mHz 68030
  797.         Performa 467    33 mHz 68030
  798.         Performa 550 CD 33 mHz 68030
  799.         Performa 475    25 mHz 68030
  800.         Performa 476    25 mHz 68030
  801.  
  802.     Portable Computers
  803.         PowerBook 165           33 mHz 68030    SuperTwist Display
  804.         PowerBook Duo 250       33 mHz 68030    Active matrix B&W
  805.         PowerBook Duo 270c      33 mHz 68030    Active matrix
  806. Colour
  807.  
  808.     Apple Printers
  809.         LaserWriter Select 360  16 mHz 29200    600 DPI 10 ppm
  810.         LaserWriter Pro 810     7.25 mHz 8200   800 DPI 20 ppm
  811.  
  812.     Apple Quickly suggests that the following remain in the product
  813. line and
  814.     that upgrade paths are available for '*' machines:
  815.         Macintosh Color Classic * Clr Classic II
  816.         Macintosh LC II * LC III
  817.         Macintosh LC III * 475
  818.         Macintosh LC 520
  819.         Macintosh Quadra 800 * 840AV
  820.         Macintosh Quadra 950
  821.         Macintosh Quadra 840 AV
  822.         Macintosh PowerBook 145b
  823.         Macintosh PowerBook 160c
  824.         Macintosh PowerBook 180
  825.         Macintosh PowerBook 180c
  826.         Macintosh PowerBook Duo 230
  827.  
  828.  
  829.         ImageWriter II
  830.         Apple Color Printer
  831.         StyleWriter II
  832.         Portable StyleWriter
  833.         Personal LaserWriter 300
  834.         LaserWriter Select 310
  835.         LaserWriter Pro 630
  836.  
  837.     Availability and Price will vary locally but this list could be a
  838. basis for price comparisons between US and Canada as well as various
  839. regions of the continent.
  840.  
  841.  
  842. Al West,   MacHand     via internet
  843. Taylor Elem.SD #60     awest@cln.etc.bc.ca
  844. 789-3323 School        hwest@fraser.sfu.ca
  845. 789-3618 Fax
  846.  
  847. ------------------------------
  848.  
  849. Date: Thu, 4 Nov 1993 08:38:07 -0600 (CST)
  850. From: Eric Durbrow <edurbrow@bigcat.missouri.edu>
  851. Subject: PowerBook Duo Power shuts off
  852.  
  853. Hi! My PowerBook Duo 210 shuts off while running Word or Quicken. The
  854. Apple tech found no hardware problems. Any ideas greatly appreciated.
  855.  
  856. System: 210 4/80; extensions Speech Manager, QuicKeys, Disinfectant INIT,
  857. hardware update and enabler, SpeedyFinder.
  858.  
  859. Eric Durbrow
  860. Dept of Anthropology
  861. University of Missouri-Columbia
  862.  
  863. ------------------------------
  864.  
  865. Date: Wed, 3 Nov 1993 12:07:27 -0500
  866. From: kkirksey@world.std.com (Ken B Kirksey)
  867. Subject: Printing/Viewing TeX Docs
  868.  
  869. This probably qualifies as an FAQ, but since I can't seem to find the
  870. answer anywhere else, I'm turning to the wonderful, erudite readers of
  871. the digest; ya'll haven't failed me yet! :-)
  872.  
  873. I've got a TeX document that I need to print from my Mac to a laser printer.
  874. The document came in two parts: the actual .tex file and a file with the
  875. following in the header -
  876.  
  877.   % LLNCS DOCUMENT STYLE -- version 1.1
  878.   % for LaTeX version 2.09
  879.  
  880.   % This style file is an adaptation of
  881.   % the original LaTeX article.sty, by:
  882.   % Frank Holzwarth, Springer-Verlag Heidelberg,
  883.   % Tiergartenstrasse 17, D-6900 Heidelberg.
  884.  
  885. Now, I know absolutely nothing about TeX, so I really don't know what
  886. to do with these files to get them to print.  I'm assuming I'll probably
  887. have to download OzTeX. :-)  Any help would be greatly appreciated,
  888.  
  889.  
  890.                   Ken
  891.  
  892. ------------------------------
  893.  
  894. Date: Wed, 03 Nov 1993 19:38:15 -0500 (CDT)
  895. From: TZA40@ISUVAX.IASTATE.EDU
  896. Subject: Quicken 4.0 (C)
  897.  
  898. In Info-Mac Digest V11 #216, Larry Wink <FDMWINK@ucf1vm.cc.ucf.edu>
  899. counsels us that Quicken 4.0 "has more bugs than the Amazon Basin."
  900. Isn't this the program that MacUser just awarded the much-
  901. envied 5 mice?
  902.  
  903. Larry, how about some specifics? Which bugs? It sounded like a
  904. gem in MacUser. I was about to plunk down my cash, but now I'm
  905. not so sure.
  906.  
  907. ------------------------------
  908.  
  909. Date: Thu, 4 Nov 1993 08:56:31 -0500
  910. From: johna@utmdacc.mda.uth.tmc.edu (John Antolak)
  911. Subject: Quicken 4 bugs (C)
  912.  
  913. Several people have asked Larry Wink to be more specific about the bugs
  914. encountered. I'm sure he will respond, but I also want to give my $0.02
  915. worth.
  916.  
  917. 1) I have a portfolio account with a few mutual funds, keeping track of my
  918. 403b pension plan. Every time I add a transaction, it recalculates the
  919. values of the securities. A few times it assessed the value of my portfolio
  920. at more than $10,000,000 (ten million). I wouldn't be working if I had that
  921. much. I managed to get the portfolio value back to normal by closing and
  922. opening the portfolio window.
  923.  
  924. 2) I have had a couple of crashes with bad F-LINE instructions during
  925. recalculation of portfolios. The next time I opened up the account, Quicken
  926. rebuilt all of the indexes, and I was back to normal.
  927.  
  928. 3) When I deleted a security from the portfolio, one of my other accounts
  929. (not a security) showed up at the bottom of the list as a security. Again,
  930. closing and then opening the portfolio window cleared up the list of
  931. securities.
  932.  
  933. 4) In September, before upgrading to version 4, my Quicken 3 file was about
  934. 160K on disk. Last night, I was backing up my data file, and noticed it was
  935. taking much longer than usual. A "Get Info" revealed that the file was
  936. 2.4MB. I opened up the file, then used "Save a copy" to make a new copy on
  937. disk. The copy was only 214K, a factor of 11 smaller. I checked the
  938. balances in both files against each other, and they seemed to have the same
  939. information.
  940.  
  941. 5) This isn't a bug, but it is pretty poor behaviour. Quicken fools with
  942. the color palette every time it starts up. I can understand a graphics
  943. program wanting to control the palette, but not Quicken. The color flashes
  944. as the palette changes are pretty annoying.
  945.  
  946. So far, I haven't lost any data (cross my fingers), but the above behaviour
  947. does not give me a lot of confidence. I have to say that I was almost ready
  948. to jump ship to MYM, because, until Quicken 4 came out. It appeared that
  949. Intuit was ignoring the Mac market, with several upgrades for their DOS and
  950. Windows versions.
  951.  
  952. To be honest, I am not ready to send the program back,      YET. I haven't
  953. encountered any anomalies using my normal checking account, and I love the
  954. "Quick Fill" feature. Quicken 3 was very stable for me, and I would like
  955. that same sort of stablity with the new version. I hope that Intuit
  956. realizes that the portfolio account features are not working (at least in
  957. my version), and make an update available.
  958.  
  959. One last peeve. After recently shelling out for the new version, I received
  960. a mail-order catalog with a Quicken-MacinTax bundle for only about $10 more
  961. than I paid for Quicken 4 itself. I have used Quicken (in one form or
  962. another) for more than five years, and have upgraded faithfully. I am
  963. waiting for a mail offer from Intuit for a reduced price on MacinTax (but
  964. I'm not holding my breath!). Maybe I should send my copy of Quicken 4 back
  965. for a refund, order the bundle and save a few bucks. ;-)
  966.  
  967. I took Larry's advice and sent a letter to Scott Cook, outlining most of
  968. the problems above, as well as giving him hell for Intuit's "silent"
  969. upgrade policy. I seem to have one problem or another every time I use the
  970. portfolio account. Maybe I'll start keeping a running account of crashes
  971. and errors, and, if I don't hear from them, send them an update in a couple
  972. of weeks.
  973.  
  974.  
  975. John A.
  976.  
  977. ------------------------------
  978.  
  979. Date: Thu, 4 Nov 1993 09:50:56 EST
  980. From: "Jeffrey N. Fritz" <JFRITZ%WVNVM.BITNET@Forsythe.Stanford.EDU>
  981. Subject: Redrawing Windows in Think Pascal
  982.  
  983. This is no doubt a FAQ, but I don't know the answer, so I'll ask.
  984.  
  985. I'm writing a program in Think Pascal.  At times during the execution
  986. of the program, I issue alert boxes for various reasons.  The problem
  987. is that when the user dismisses the dialog box, the window underneath
  988. is not redrawn.
  989.  
  990. I handle this now by brute force: I literally rewrite everything to
  991. the window all over again.  However, I know that there are better
  992. ways to do this inbedded into Think Pascal and the Mac OS.
  993.  
  994. Just about every programmer must encounter this, so could someone
  995. who understands Think Pascal help a novice with the window redraw
  996. solution?  I'm not highly technical in programming, so simpler
  997. solutions are appreciated!
  998.  
  999. Jeffrey Fritz
  1000. West Virginia University
  1001. jfritz@wvnvm.wvnet.edu
  1002.  
  1003. ------------------------------
  1004.  
  1005. Date: Wed, 3 Nov 93 13:12:32 PST
  1006. From: HarriRehnberg@salient.com (Salient Software)
  1007. Subject: Salient.com
  1008.  
  1009. Salient Software was acquired by Fifth Generation Systems of Baton Rouge
  1010. LA in June 1992.  As of 4 October 1993 Fifth Generation Systems has merged
  1011. with Symantec Corporation.
  1012.  
  1013. Salient.com will cease operations effective 12 November 1993.
  1014.  
  1015. Subscription service is terminated effective 12 November 1993.
  1016.  
  1017. It is possible that Symantec may initiate a similar service at a later time.
  1018.  
  1019. The 1-800-766-7283 tech support line will continue to operate but the
  1020. hours for support will be 7am-7pm central time U.S. (that's zulu -6)
  1021. Monday-Friday.  This number is for Fifth Generation Systems products.
  1022.  
  1023. Customer service for all Symantec products can be reached at 800-441-7234
  1024. in the U.S. and Canada, and at 503-334-6054 elsewhere. Dealer and corporate
  1025. customers should also use the 800 number above to reach their sales
  1026. representative.
  1027.  
  1028.  
  1029. Harri Rehnberg
  1030. Salient Software
  1031. 931103 13:10:55 (GMT-7)
  1032.  
  1033. ------------------------------
  1034.  
  1035. Date: Wed, 3 Nov 93 12:22:16 -0600
  1036. From: achebonk@phibred.com (Nubi Achebo Ext. 4389 "Virtual Info Systems Now!)
  1037. Subject: Shareware Communication Tool
  1038.  
  1039. Would somebody please recommend a good shareware real-Mac communication
  1040. package.  I use a a commercial package now but I need something
  1041. simple a non-power user.  A fairly sophisticated shareware
  1042. program will do.  Please email me directly while sending your
  1043. response to sumex.  Thanks.
  1044.  
  1045. Nubi Achebo
  1046. achebonk@phibred.com
  1047.  
  1048. ------------------------------
  1049.  
  1050. Date: Wed, 3 Nov 1993 10:03:21 PST
  1051. From: Kee Nethery <kee@aol.com>
  1052. Subject: SNMP Agent
  1053.  
  1054. Am pretty sure that these people sell WatchTower, an SNMP agent.
  1055.  
  1056. Intercon Systems Corporation
  1057. 950 Herndon Parkway
  1058. Herndon, VA 22070
  1059. 703-709-5500
  1060. dave@intercon.com
  1061.  
  1062. If not them, contact neon software and ask them. I know they know who makes
  1063. it but I am pretty sure it is sold by Intercon.
  1064.  
  1065. neon.sw@applelink.apple.com
  1066.  
  1067.  
  1068. Kee Nethery
  1069. Kee@aol.com
  1070.  
  1071. ------------------------------
  1072.  
  1073. Date: Thu, 04 Nov 93 10:05:58 EST
  1074. From: Pete Harrison <MERCURY%VTVM1.BITNET@Forsythe.Stanford.EDU>
  1075. Subject: Symbol Font (Q)
  1076.  
  1077. Hello Info-Mac folks. It's been a while since I've kept up with the
  1078. digest, so I hope this isn't being repetetive. I am writing my
  1079. dissertation on my old mac SE and have run into a problem. I need bold
  1080. symbols and apparently Apple didn't think anyone would need them, so
  1081. they are not built into the laserwriter. I am using word 5.1 and system
  1082. 6.0.4 w/o truetype. I called Adobe about this and they said they do
  1083. have bold, bold-italic, and italic versions of the symbol postscript
  1084. font, but they charge over $300 for them! I downloaded the Belsley/
  1085. Bartholomew fonts from info-mac, but I'm sure they would cause problems
  1086. with equations created in the equation editor.
  1087.  
  1088. So, does anyone know of a cheap way of getting versions of these other
  1089. three faces of symbol that works in a seamless way with word? (That is,
  1090. if I choose a symbol and change its style to bold, it prints bold on
  1091. my laserwriter compatible printer) Thanks in advance.
  1092.  
  1093. Pete
  1094.  
  1095. ------------------------------
  1096.  
  1097. Date: Thu, 4 Nov 93 9:43:12 EST
  1098. From: cs42521d@lux.latrobe.edu.au (Pete)
  1099. Subject: Sys 6.0.8l where?
  1100.  
  1101. I would like to know if it's still possible to get System 6.0.8l
  1102. on the internet. I checked previous digests which suggested looking
  1103. at the rascal mirror at wustl but to no avail. There is a readme file
  1104. there mentioning installation, but no files. I scanned archie but
  1105. no good :-(
  1106.  
  1107. If anyone knows where I can *STILL* ftp it from (or as a last resort email the
  1108. disk images to me) please mail me.
  1109.  
  1110. Thanks,
  1111.  
  1112. Pete.
  1113.  
  1114. ------------------------------
  1115.  
  1116. Date: Wed, 3 Nov 1993 15:02:49 PST
  1117. From: Kee Nethery <kee@aol.com>
  1118. Subject: Syst 7 Pro PowerTalk MSAMs (Q)
  1119.  
  1120. OK, I am now running System 7 Pro and I want to take advantage of the AOCE
  1121. universal "In Tray" for sending and receiving all my mail. Anyone know of
  1122. any available MSAMs "Message Service Access Modules" that would connect my
  1123. AOCE In Tray to an e-mail service such as Compuserve or AOL or AppleLink or
  1124. a POP server?
  1125.  
  1126. Kee Nethery
  1127. kee@aol.com
  1128.  
  1129. ------------------------------
  1130.  
  1131. Date: Thu, 4 Nov 1993 00:09:52 -0600
  1132. From: (Pete Chane) <pchaneuw@vms2.macc.wisc.edu>
  1133. Subject: Three cheers for 800-SOS-APPL
  1134.  
  1135. I had a great experience with the people at 800-SOS-APPL.  My AudioVision
  1136. monitor died on Saturday.   Monday morning I called 800-SOS-APPL.  They
  1137. sent me a new monitor THE NEXT DAY along with a prepaid Airborne mailing
  1138. label so I can send my old one back.  It was how service ought to
  1139. be...quick, easy, no problems whatsoever...and no visit to a local dealer
  1140. or service center.
  1141.  
  1142. I hope things like this continue.
  1143.  
  1144.  
  1145.  ------------------------------------------------------
  1146. Pete Chane
  1147. PCHANEUW@macc.wisc.edu
  1148. PCHANE@applelink.apple.com
  1149.  
  1150. ------------------------------
  1151.  
  1152. Date: 3 Nov 1993 22:41:31 GMT
  1153. From: quaver@stein3.u.washington.edu (rick phillips)
  1154. Subject: umich site
  1155.  
  1156. Can someone help me get into the umich archives?
  1157. Correct me if I am wrong.
  1158. I think the address is umich.edu
  1159. but i have also tried mac.archive.umich.edu
  1160. in both cases, anonymous gives me a failed login.
  1161.  
  1162. thanks
  1163.  
  1164. ------------------------------
  1165.  
  1166. Date: Wed, 03 Nov 1993 12:42:00 -0500 (EST)
  1167. From: Daniel.Frohlich@UC.Edu
  1168. Subject: What good is VRAM ?
  1169.  
  1170. Hey gang,
  1171.      Please forgive me if this is a FAQ, but could someone
  1172.     give me a rundown of the advantages of VRAM vs
  1173.     the advantages of DRAM?
  1174.  
  1175.      We have several Centris 610's which have 4 memory expansion
  1176.     slots (2 DRAM, 2 VRAM) and we are thinking of adding
  1177.     more memory.
  1178.  
  1179.      What kind of performance improvements can we expect with
  1180.     extra DRAM/VRAM?
  1181.  
  1182.      Please respond to me directly and I will summarize for the
  1183.     net.
  1184.  
  1185.     Thanks,
  1186.             Dan Frohlich, University of Cincinnati
  1187.  
  1188. ------------------------------
  1189.  
  1190. Date: Thu, 4 Nov 93 10:04:39 +0100
  1191. From: rg@cict.fr (Robert Gauthier)
  1192.  
  1193. Having Chinese and Korean students  they must be able to write
  1194. in their own language. I thought Worldscript I/II would solve
  1195. my problem but things seem to be more complicated.
  1196. I need to be able to write in Chinese and in Korean with hypercard
  1197. and a word processor.
  1198. I own Nissus Limited Flag and Wintext,Worldscript I and II.How
  1199. do I go about getting fonts and Settings for each language ?Apda
  1200. in France does not sell such stuff.
  1201. Please answer direct to me as I do not read info-mac regularly.
  1202. rg@cix.cict.fr
  1203.  
  1204. ------------------------------
  1205.  
  1206. End of Info-Mac Digest
  1207. ******************************
  1208.  
  1209.